home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / lib / strchr.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-11-10  |  177 b   |  17 lines

  1. /*
  2.  * strchr.c
  3.  */
  4.  
  5. #include <string.h>
  6.  
  7. char *strchr(const char *s, int c)
  8. {
  9.   while ( *s != (char)c ) {
  10.     if ( ! *s )
  11.       return NULL;
  12.     s++;
  13.   }
  14.  
  15.   return (char *)s;
  16. }
  17.